home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / misc / cpk / arexx / spin.cpk next >
Text File  |  1994-01-23  |  372b  |  26 lines

  1. /*
  2.  * CPK ARexx communications test; spin the current molecule about
  3.  * the Y axis.
  4.  *
  5.  * Author: Eric G. Suchanek, Ph.D.
  6.  * Copyright © 1994 Eric G. Suchanek, Ph.D. All Rights Reserved
  7.  *
  8.  * You need to run the CPK program first...
  9.  * 
  10.  */
  11.  
  12. Options FailAt 100
  13.  
  14. Options Results
  15.  
  16. address cpk1
  17.  
  18. 'VectorMode ON'
  19.  
  20. do myyrot = 0 to 360 by 5
  21.  'yrot ' myyrot
  22.  'render'
  23. end
  24.  
  25.  
  26. exit